From bd51a589b12d8db58bfe1f8eecea97815bf6113d Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Fri, 16 Mar 2001 08:05:21 +0000 Subject: [PATCH] Fix sign error with queued region translations. 2001-03-16 Alexander Larsson * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): Fix sign error with queued region translations. --- ChangeLog | 5 +++++ ChangeLog.pre-2-0 | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-2 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ gdk/x11/gdkgeometry-x11.c | 2 +- 8 files changed, 36 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cbf652d1d5..e4f9b06860 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-03-16 Alexander Larsson + + * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): + Fix sign error with queued region translations. + 2001-03-15 HideToshi Tajima * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index cbf652d1d5..e4f9b06860 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +2001-03-16 Alexander Larsson + + * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): + Fix sign error with queued region translations. + 2001-03-15 HideToshi Tajima * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index cbf652d1d5..e4f9b06860 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2001-03-16 Alexander Larsson + + * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): + Fix sign error with queued region translations. + 2001-03-15 HideToshi Tajima * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index cbf652d1d5..e4f9b06860 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2001-03-16 Alexander Larsson + + * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): + Fix sign error with queued region translations. + 2001-03-15 HideToshi Tajima * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index cbf652d1d5..e4f9b06860 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2001-03-16 Alexander Larsson + + * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): + Fix sign error with queued region translations. + 2001-03-15 HideToshi Tajima * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index cbf652d1d5..e4f9b06860 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2001-03-16 Alexander Larsson + + * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): + Fix sign error with queued region translations. + 2001-03-15 HideToshi Tajima * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index cbf652d1d5..e4f9b06860 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2001-03-16 Alexander Larsson + + * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): + Fix sign error with queued region translations. + 2001-03-15 HideToshi Tajima * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): diff --git a/gdk/x11/gdkgeometry-x11.c b/gdk/x11/gdkgeometry-x11.c index 17b6f8b9d5..dff7274f67 100644 --- a/gdk/x11/gdkgeometry-x11.c +++ b/gdk/x11/gdkgeometry-x11.c @@ -722,7 +722,7 @@ _gdk_window_process_expose (GdkWindow *window, if (item->window == window) { if (item->type == GDK_WINDOW_QUEUE_TRANSLATE) - gdk_region_offset (invalidate_region, - item->u.translate.dx, - item->u.translate.dy); + gdk_region_offset (invalidate_region, item->u.translate.dx, item->u.translate.dy); else /* anti-expose */ gdk_region_subtract (invalidate_region, item->u.antiexpose.area); } -- 2.30.2